Micron Document
Fox's Git Mirrors


Displaying Raw • Download

pkg/zenfix/testdata/bad.py 83609bcb589eb3cfc35b98ecc0b3327b2ae99d77 (83609bcb) Text, 350 B

import time

LINK_TIMEOUT = 15

def wait_link():
link_ready = False
while not link_ready:
time.sleep(0.5)

def wait_path(dest):
while not Transport.has_path(dest):
time.sleep(0.05)

class Transport:
@staticmethod
def has_path(dest):
return False

@staticmethod
def request_path(dest):
pass

Served by rngit 1.5.2 - Generated in 0.02s